AddManyToBack Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Adds a collection of items to the back of the Deque. The indices of all existing items in the Deque are unchanged. The last item in the added collection becomes the last item in the Deque.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public void AddManyToBack(
	IEnumerable<T> collection
)
Visual Basic (Declaration)
Public Sub AddManyToBack ( _
	collection As IEnumerable(Of T) _
)
Visual C++
public:
void AddManyToBack (
	IEnumerable<T>^ collection
)

Parameters

collection
IEnumerable<(Of <T>)>
The collection of item to add.

Remarks

This method takes time O(M), where M is the number of items in the collection.

See Also